All Questions
4 questions
1vote
1answer
126views
How can I pick a single post from the latest 3?
I'm looking to display a single featured post from my latest 3 posts at random. I've managed to get it up and running picking any post at random just fine, but I want to filter it down to only the ...
0votes
1answer
425views
Wordpress query reverse order
$args = array('post_type' => 'etlap', 'posts_per_page' => 5, 'post__in' => $ids, 'post_status' => 'any', 'orderby' => 'post__in'); I want to make the orderby status reversed. How is it ...
0votes
1answer
1kviews
orderby not working for query_posts using array of IDs
I have an array of IDs that i send to query_posts to get the posts (which works fine) but it seems to always put the attachment(562) last even though it is the newest. Also tried title and ASC vs DESC ...
9votes
4answers
44kviews
Order by & include array by specific post ids
I have the following: <?php $num_cols = 2; // set the number of columns here $args = array( 'post_type' => 'testimonials', 'posts_per_page' =...